home *** CD-ROM | disk | FTP | other *** search
/ Digitální fotografie a video / Digitalni-fotografie-a-video-covermount.bin / Aplikace / Servis / Rejstrik.dxr / 00068_Najezd a klik.ls < prev    next >
Encoding:
Text File  |  1998-05-19  |  861 b   |  40 lines

  1. property Znacka
  2. global Pismeno
  3.  
  4. on getPropertyDescriptionList
  5.   set description to [:]
  6.   addProp(description, #Znacka, [#comment: "Znacka:", #format: #string, #default: EMPTY])
  7.   return description
  8. end
  9.  
  10. on beginSprite me
  11.   set the visible of sprite the spriteNum of me to 1
  12.   set the visible of sprite (the spriteNum of me + 1) to 0
  13. end
  14.  
  15. on endSprite me
  16. end
  17.  
  18. on mouseEnter me
  19.   if Pismeno = Znacka then
  20.     exit
  21.   end if
  22.   puppetSound(1, "Najezd")
  23.   set the cursor of sprite the spriteNum of me to [member "ruka_1", member "ruka_2"]
  24.   set the visible of sprite (the spriteNum of me + 1) to 1
  25. end
  26.  
  27. on mouseLeave me
  28.   set the visible of sprite (the spriteNum of me + 1) to 0
  29.   set the cursor of sprite the spriteNum of me to -1
  30. end
  31.  
  32. on mouseDown me
  33.   puppetSound(1, "Klik")
  34. end
  35.  
  36. on mouseUp me
  37.   set the cursor of sprite the spriteNum of me to -1
  38.   go(Znacka)
  39. end
  40.